home *** CD-ROM | disk | FTP | other *** search
/ PC User 2002 April / Disc 2 / PCUSER0402D2.iso / software / utils / files / wincron.exe / data1.cab / Sample_Scripts / onerror_01.tg < prev    next >
Encoding:
Text File  |  2001-10-20  |  321 b   |  19 lines

  1. ## onerror_01.tab
  2.  
  3. # handle an error
  4. {
  5.     -start 
  6.     -action -print raise an exception
  7.     -action -onerror my_error_procedure
  8.     -action -raise
  9.     -action -print should never reach this point
  10.     -action -inc 0 0 0 3
  11. }
  12.  
  13. {
  14.     -name my_error_procedure
  15.     -action -print This is the error handler
  16.     -action -return break
  17. }
  18.  
  19.